Conversation
Change the sync issues workflow to run daily at 2:00 AM UTC and update the default target branch to 'dev'. Removed unnecessary branch determination logic for clarity. Refs: #91
## Summary - Changes cron schedule from `0 0 * * *` (midnight UTC) to `0 2 * * *` (2:00 AM UTC) - Removes event-based triggers (`issues` and `pull_request` events) — workflow now only runs on schedule or manual dispatch - Removes the dynamic `Determine target branch` step; branch is now taken directly from the `workflow_dispatch` input (`target-branch`, defaulting to `dev`) - Simplifies `target-branch` input description to reflect supported values (`dev`, `release/x.y.z`) Closes #91 ## Test plan (only possible after merge) - [ ] Verify workflow runs correctly on the daily schedule at 2:00 AM UTC - [ ] Trigger manually via `workflow_dispatch` without specifying a branch — confirm it checks out `dev` - [ ] Trigger manually via `workflow_dispatch` with a specific branch — confirm it checks out the specified branch Refs: #91
Contributor
Author
|
Superseded by a new PR from |
3 tasks
c-vigo
added a commit
that referenced
this pull request
Feb 19, 2026
## Summary Merge `main` back into `dev` to synchronize changes that landed on `main` via #91: - **Reduce sync-issues workflow frequency** — removed `issues` and `pull_request` event triggers from `sync-issues.yml`, keeping only the daily schedule (`0 2 * * *`) and `workflow_dispatch`. Simplifies target branch logic by removing the now-unnecessary "Determine target branch" step. ## Conflict Resolution The `dev` branch had additional hardening changes to `sync-issues.yml` (pinned action SHAs, `ubuntu-22.04`, `timeout-minutes`, restrictive top-level `permissions`, `output-dir: 'docs'`). The merge conflict was resolved by keeping all of `dev`'s security hardening while applying `main`'s trigger simplification. Supersedes #97 (which had an unresolvable conflict due to head being `main` itself). ## Tests - [x] Verify the `sync-issues.yml` workflow no longer triggers on issue/PR events - [x] Verify `workflow_dispatch` with `target-branch` input still works (used by `release.yml` and `post-release.yml`) - [x] All pre-commit hooks pass (yamllint, check-action-pins, etc.) Refs: #91
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Merge
mainback intodevto synchronize changes that landed onmainvia #91:issuesandpull_requestevent triggers fromsync-issues.yml, keeping only the daily schedule (0 2 * * *) andworkflow_dispatch. Simplifies target branch logic by removing the now-dead PR-merged-into-main code path.Context
After PR #91 was merged into
main, thedevbranch is missing the workflow schedule update (adafdc5). This PR bringsdevin sync withmainto prevent the sync-issues workflow from continuing to fire on every issue/PR state change ondev-based branches.Tests
sync-issues.ymlworkflow no longer triggers on issue/PR eventsworkflow_dispatchwithtarget-branchinput still works (used byrelease.ymlandpost-release.yml)Refs: #91